home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / gsmemory.c < prev    next >
C/C++ Source or Header  |  1997-07-02  |  12KB  |  401 lines

  1. /* Copyright (C) 1993, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gsmemory.c */
  20. /* Generic allocator support for Ghostscript library */
  21. #include "gx.h"
  22. #include "malloc_.h"
  23. #include "memory_.h"
  24. #include "gsmdebug.h"
  25. #include "gsrefct.h"        /* to check prototype */
  26. #include "gsstruct.h"        /* ditto */
  27.  
  28. /* Define the fill patterns for unallocated memory. */
  29. byte gs_alloc_fill_alloc = 0xa1;
  30. byte gs_alloc_fill_block = 0xb1;
  31. byte gs_alloc_fill_collected = 0xc1;
  32. byte gs_alloc_fill_deleted = 0xd1;
  33. byte gs_alloc_fill_free = 0xf1;
  34.  
  35. /* A 'structure' type descriptor for free blocks. */
  36. gs_public_st_simple(st_free, byte, "(free)");
  37.  
  38. /* The 'structure' type descriptor for bytes. */
  39. gs_public_st_simple(st_bytes, byte, "bytes");
  40.  
  41. /* Fill an unoccupied block with a pattern. */
  42. /* Note that the block size may be too large for a single memset. */
  43. void
  44. gs_alloc_memset(void *ptr, int/*byte*/ fill, ulong lsize)
  45. {    ulong msize = lsize;
  46.     char *p = ptr;
  47.     int isize;
  48.  
  49.     for ( ; msize; msize -= isize, p += isize )
  50.       { isize = min(msize, max_int);
  51.         memset(p, fill, isize);
  52.       }
  53. }
  54.  
  55. /* ------ Heap allocator ------ */
  56.  
  57. /*
  58.  * An implementation of Ghostscript's memory manager interface
  59.  * that works directly with the C heap.  We keep track of all allocated
  60.  * blocks so we can free them at cleanup time.
  61.  */
  62. private gs_memory_proc_alloc_bytes(gs_heap_alloc_bytes);
  63. private gs_memory_proc_alloc_struct(gs_heap_alloc_struct);
  64. private gs_memory_proc_alloc_byte_array(gs_heap_alloc_byte_array);
  65. private gs_memory_proc_alloc_struct_array(gs_heap_alloc_struct_array);
  66. private gs_memory_proc_resize_object(gs_heap_resize_object);
  67. private gs_memory_proc_object_size(gs_heap_object_size);
  68. private gs_memory_proc_object_type(gs_heap_object_type);
  69. private gs_memory_proc_free_object(gs_heap_free_object);
  70. private gs_memory_proc_alloc_string(gs_heap_alloc_string);
  71. private gs_memory_proc_resize_string(gs_heap_resize_string);
  72. private gs_memory_proc_free_string(gs_heap_free_string);
  73. private gs_memory_proc_register_root(gs_heap_register_root);
  74. private gs_memory_proc_unregister_root(gs_heap_unregister_root);
  75. private gs_memory_proc_status(gs_heap_status);
  76. private gs_memory_proc_enable_free(gs_heap_enable_free);
  77. gs_memory_t gs_memory_default = {
  78.     {    gs_heap_alloc_bytes,
  79.         gs_heap_alloc_bytes,
  80.         gs_heap_alloc_struct,
  81.         gs_heap_alloc_struct,
  82.         gs_heap_alloc_byte_array,
  83.         gs_heap_alloc_byte_array,
  84.         gs_heap_alloc_struct_array,
  85.         gs_heap_alloc_struct_array,
  86.         gs_heap_resize_object,
  87.         gs_heap_object_size,
  88.         gs_heap_object_type,
  89.         gs_heap_free_object,
  90.         gs_heap_alloc_string,
  91.         gs_heap_alloc_string,
  92.         gs_heap_resize_string,
  93.         gs_heap_free_string,
  94.         gs_heap_register_root,
  95.         gs_heap_unregister_root,
  96.         gs_heap_status,
  97.         gs_heap_enable_free
  98.     }
  99. };
  100. /* We must make sure that malloc_blocks leave the block aligned. */
  101. typedef struct malloc_block_s malloc_block;
  102. #define malloc_block_data\
  103.     malloc_block *next;\
  104.     malloc_block *prev;\
  105.     uint size;\
  106.     gs_memory_type_ptr_t type;\
  107.     client_name_t cname
  108. struct malloc_block_data_s { malloc_block_data; };
  109. struct malloc_block_s {
  110.     malloc_block_data;
  111. /* ANSI C does not allow zero-size arrays, so we need the following */
  112. /* unnecessary and wasteful workaround: */
  113. #define _npad (-size_of(struct malloc_block_data_s) & 7)
  114.     byte _pad[(_npad == 0 ? 8 : _npad)];    /* pad to double */
  115. #undef _npad
  116. };
  117.  
  118. private malloc_block *malloc_list;
  119. private long malloc_used;
  120. /* The record of maximum allocation is public. */
  121. long gs_malloc_max = 0;
  122. /* The limit on allocable space is public. */
  123. long gs_malloc_limit = max_long;
  124.  
  125. /* Initialize the malloc heap. */
  126. private long heap_available(P0());
  127. void
  128. gs_malloc_init(void)
  129. {    malloc_list = 0;
  130.     malloc_used = 0;
  131.     gs_malloc_max = 0;
  132. }
  133. /* Estimate the amount of available memory by probing with mallocs. */
  134. /* We may under-estimate by a lot, but that's better than winding up with */
  135. /* a seriously inflated address space. */
  136. /* This is quite a hack! */
  137. #define max_malloc_probes 20
  138. #define malloc_probe_size 64000
  139. private long
  140. heap_available(void)
  141. {    long avail = 0;
  142.     void *probes[max_malloc_probes];
  143.     uint n;
  144.     for ( n = 0; n < max_malloc_probes; n++ )
  145.       { if ( (probes[n] = malloc(malloc_probe_size)) == 0 )
  146.           break;
  147.         if_debug2('a', "[a]heap_available probe[%d]=0x%lx\n",
  148.               n, (ulong)probes[n]);
  149.         avail += malloc_probe_size;
  150.       }
  151.     while ( n )
  152.       free(probes[--n]);
  153.     return avail;
  154. }
  155.  
  156. /* Allocate various kinds of blocks. */
  157. private byte *
  158. gs_heap_alloc_bytes(gs_memory_t *mem, uint size, client_name_t cname)
  159. {    byte *ptr = 0;
  160. #ifdef DEBUG
  161.     const char *msg;
  162.     static const char *ok_msg = "OK";
  163. #  define set_msg(str) (msg = (str))
  164. #else
  165. #  define set_msg(str) DO_NOTHING
  166. #endif
  167.  
  168.     if ( size > gs_malloc_limit - sizeof(malloc_block)
  169.        )
  170.       { /* Definitely too large to allocate; also avoids overflow. */
  171.         set_msg("exceeded limit");
  172.       }
  173.     else
  174.       { uint added = size + sizeof(malloc_block);
  175.  
  176.         if ( gs_malloc_limit - added < malloc_used )
  177.           set_msg("exceeded limit");
  178.         else if ( (ptr = (byte *)malloc(added)) == 0 )
  179.           set_msg("failed");
  180.         else
  181.           { malloc_block *bp = (malloc_block *)ptr;
  182.  
  183.             if ( malloc_list )
  184.           malloc_list->prev = bp;
  185.         bp->next = malloc_list;
  186.         bp->prev = 0;
  187.         bp->size = size;
  188.         bp->type = &st_bytes;
  189.         bp->cname = cname;
  190.         malloc_list = bp;
  191.         set_msg(ok_msg);
  192.         ptr = (byte *)(bp + 1);
  193.         gs_alloc_fill(ptr, gs_alloc_fill_alloc, size);
  194.         malloc_used += size + sizeof(malloc_block);
  195.         if ( malloc_used > gs_malloc_max )
  196.           gs_malloc_max = malloc_used;
  197.           }
  198.       }
  199. #ifdef DEBUG
  200.     if ( gs_debug_c('a') || msg != ok_msg )
  201.       dprintf4("[a+]gs_malloc(%s)(%u) = 0x%lx: %s\n",
  202.            client_name_string(cname), size, (ulong)ptr, msg);
  203. #endif
  204.     return ptr;
  205. #undef set_msg
  206. }
  207. private void *
  208. gs_heap_alloc_struct(gs_memory_t *mem, gs_memory_type_ptr_t pstype,
  209.   client_name_t cname)
  210. {    void *ptr = gs_heap_alloc_bytes(mem, gs_struct_type_size(pstype), cname);
  211.     if ( ptr == 0 )
  212.       return 0;
  213.     ((malloc_block *)ptr)[-1].type = pstype;
  214.     return ptr;
  215. }
  216. private byte *
  217. gs_heap_alloc_byte_array(gs_memory_t *mem, uint num_elements, uint elt_size,
  218.   client_name_t cname)
  219. {    ulong lsize = (ulong)num_elements * elt_size;
  220.     if ( lsize != (uint)lsize )
  221.       return 0;
  222.     return gs_heap_alloc_bytes(mem, (uint)lsize, cname);
  223. }
  224. private void *
  225. gs_heap_alloc_struct_array(gs_memory_t *mem, uint num_elements,
  226.   gs_memory_type_ptr_t pstype, client_name_t cname)
  227. {    void *ptr = gs_heap_alloc_byte_array(mem, num_elements, gs_struct_type_size(pstype), cname);
  228.     if ( ptr == 0 )
  229.       return 0;
  230.     ((malloc_block *)ptr)[-1].type = pstype;
  231.     return ptr;
  232. }
  233. private void *
  234. gs_heap_resize_object(gs_memory_t *mem, void *obj, uint new_num_elements,
  235.   client_name_t cname)
  236. {    malloc_block *ptr = (malloc_block *)obj - 1;
  237.     gs_memory_type_ptr_t pstype = ptr->type;
  238.     uint old_size = gs_object_size(mem, obj) + sizeof(malloc_block);
  239.     uint new_size =
  240.       gs_struct_type_size(pstype) * new_num_elements +
  241.         sizeof(malloc_block);
  242.     malloc_block *new_ptr =
  243.       (malloc_block *)gs_realloc(ptr, old_size, new_size);
  244.  
  245.     if ( new_ptr == 0 )
  246.       return 0;
  247.     if ( new_ptr->prev )
  248.       new_ptr->prev->next = new_ptr;
  249.     else
  250.       malloc_list = new_ptr;
  251.     if ( new_ptr->next )
  252.       new_ptr->next->prev = new_ptr;
  253.     new_ptr->size = new_size - sizeof(malloc_block);
  254.     malloc_used -= old_size;
  255.     malloc_used += new_size;
  256.     if ( new_size > old_size )
  257.       gs_alloc_fill((byte *)new_ptr + old_size,
  258.             gs_alloc_fill_alloc, new_size - old_size);
  259.     return new_ptr + 1;
  260. }
  261. private uint
  262. gs_heap_object_size(gs_memory_t *mem, const void *ptr)
  263. {    return ((const malloc_block *)ptr)[-1].size;
  264. }
  265. private gs_memory_type_ptr_t
  266. gs_heap_object_type(gs_memory_t *mem, const void *ptr)
  267. {    return ((const malloc_block *)ptr)[-1].type;
  268. }
  269. private void
  270. gs_heap_free_object(gs_memory_t *mem, void *ptr, client_name_t cname)
  271. {    malloc_block *bp = malloc_list;
  272.     if ( gs_debug_c('a') )
  273.       dprintf3("[a-]gs_free(%s) 0x%lx(%u)\n",
  274.            client_name_string(cname), (ulong)ptr,
  275.            (ptr == 0 ? 0 : ((malloc_block *)ptr)[-1].size));
  276.     if ( ptr == 0 )
  277.       return;
  278.     if ( ptr == bp + 1 )
  279.       { malloc_list = bp->next;
  280.         malloc_used -= bp->size + sizeof(malloc_block);
  281.         gs_alloc_fill(bp + 1, gs_alloc_fill_free, bp->size);
  282.         free(bp);
  283.       }
  284.     else
  285.       { malloc_block *np;
  286.         for ( ; (np = bp->next) != 0; bp = np )
  287.           { if ( ptr == np + 1 )
  288.           { bp->next = np->next;
  289.             malloc_used -= np->size + sizeof(malloc_block);
  290.             gs_alloc_fill(np + 1, gs_alloc_fill_free, np->size);
  291.             free(np);
  292.             return;
  293.           }
  294.           }
  295.         lprintf2("%s: free 0x%lx not found!\n",
  296.              client_name_string(cname), (ulong)ptr);
  297.         free((char *)((malloc_block *)ptr - 1));
  298.       }
  299. }
  300. private byte *
  301. gs_heap_alloc_string(gs_memory_t *mem, uint nbytes, client_name_t cname)
  302. {    return gs_heap_alloc_bytes(mem, nbytes, cname);
  303. }
  304. private byte *
  305. gs_heap_resize_string(gs_memory_t *mem, byte *data, uint old_num, uint new_num,
  306.   client_name_t cname)
  307. {    if ( gs_heap_object_type(mem, data) != &st_bytes )
  308.       { lprintf2("%s: resizing non-string 0x%lx!\n",
  309.              client_name_string(cname), (ulong)data);
  310.       }
  311.     return gs_heap_resize_object(mem, data, new_num, cname);
  312. }
  313. private void
  314. gs_heap_free_string(gs_memory_t *mem, byte *data, uint nbytes,
  315.   client_name_t cname)
  316. {    /****** SHOULD CHECK SIZE IF DEBUGGING ******/
  317.     gs_heap_free_object(mem, data, cname);
  318. }
  319. private void
  320. gs_heap_register_root(gs_memory_t *mem, gs_gc_root_t *rp, gs_ptr_type_t ptype,
  321.   void **up, client_name_t cname)
  322. {
  323. }
  324. private void
  325. gs_heap_unregister_root(gs_memory_t *mem, gs_gc_root_t *rp,
  326.   client_name_t cname)
  327. {
  328. }
  329. private void
  330. gs_heap_status(gs_memory_t *mem, gs_memory_status_t *pstat)
  331. {    pstat->allocated = malloc_used + heap_available();
  332.     pstat->used = malloc_used;
  333. }
  334. private void
  335. gs_heap_enable_free(gs_memory_t *mem, bool enable)
  336. {    if ( enable )
  337.       mem->procs.free_object = gs_heap_free_object,
  338.       mem->procs.free_string = gs_heap_free_string;
  339.     else
  340.       mem->procs.free_object = gs_ignore_free_object,
  341.       mem->procs.free_string = gs_ignore_free_string;
  342. }
  343.  
  344. /* Release all malloc'ed blocks. */
  345. void
  346. gs_malloc_release(void)
  347. {    malloc_block *bp = malloc_list;
  348.     malloc_block *np;
  349.     for ( ; bp != 0; bp = np )
  350.        {    np = bp->next;
  351.         if ( gs_debug_c('a') )
  352.           dprintf3("[a]gs_malloc_release(%s) 0x%lx(%u)\n",
  353.                client_name_string(bp->cname), (ulong)(bp + 1),
  354.                bp->size);
  355.         gs_alloc_fill(bp + 1, gs_alloc_fill_free, bp->size);
  356.         free(bp);
  357.        }
  358.     malloc_list = 0;
  359.     malloc_used = 0;
  360. }
  361.  
  362. /* ------ Other memory management ------ */
  363.  
  364. /* No-op freeing procedures */
  365. void
  366. gs_ignore_free_object(gs_memory_t *mem, void *data, client_name_t cname)
  367. {
  368. }
  369. void
  370. gs_ignore_free_string(gs_memory_t *mem, byte *data, uint nbytes,
  371.   client_name_t cname)
  372. {
  373. }
  374.  
  375. /* No-op pointer enumeration procedure */
  376. ENUM_PTRS_BEGIN_PROC(gs_no_struct_enum_ptrs) {
  377.   return 0;
  378. ENUM_PTRS_END_PROC }
  379.  
  380. /* No-op pointer relocation procedure */
  381. RELOC_PTRS_BEGIN(gs_no_struct_reloc_ptrs) {
  382. } RELOC_PTRS_END
  383.  
  384. /* Get the size of a structure from the descriptor. */
  385. uint
  386. gs_struct_type_size(gs_memory_type_ptr_t pstype)
  387. {    return pstype->ssize;
  388. }
  389.  
  390. /* Get the name of a structure from the descriptor. */
  391. struct_name_t
  392. gs_struct_type_name(gs_memory_type_ptr_t pstype)
  393. {    return pstype->sname;
  394. }
  395.  
  396. /* Normal freeing routine for reference-counted structures. */
  397. void
  398. rc_free_struct_only(gs_memory_t *mem, void *data, client_name_t cname)
  399. {    gs_free_object(mem, data, cname);
  400. }
  401.